/* Source: https://ui.dev/get-current-timestamp-javascript */

function getTimestampInSeconds () {
	return Math.floor(Date.now() / 1000)
}